home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Tools - Objects / E.T.O. #4 Installer / Startup < prev    next >
Text File  |  1991-05-23  |  2KB  |  64 lines

  1. #    I N S T A L L A T I O N   S T A R T U P   S C R I P T
  2. #
  3. #    Copyright Apple Computer, Inc. 1987, 1988, 1989, 1990, 1991
  4. #    All rights reserved.
  5. #
  6. #    This script is used to install MPW, SADE, MacsBug, ResEdit, MacApp, C++ and 411
  7. #    from the distribution compact disk onto a destination hard disk. This installer
  8. #    can also update a previous version of any of the above to a later version level
  9. #    or revert from any version to an earlier version.
  10.  
  11.  
  12. #    Export some built-in Shell variables.
  13.  
  14. #    {Boot} - The boot disk.  (Predefined.)
  15.             Export Boot
  16.  
  17. #    {SystemFolder} - The directory that contains System & Finder.  (Predefined.)
  18.             Export SystemFolder
  19.  
  20. #    {ShellDirectory} - The directory that contains MPW Shell.  (Predefined.)
  21.             Export ShellDirectory
  22.             
  23. #    {Active} - The active (topmost) window.  (Predefined.)
  24.             Export Active
  25.  
  26. #    {Target} - The target (previously active) window.  (Predefined.)
  27.             Export Target
  28.  
  29. #    {Worksheet} - The name of the Worksheet window.  (Predefined.)
  30.             Export Worksheet
  31.             
  32.  
  33. #    {Status} - The result of the last command executed.  (Predefined.)
  34.             Export Status
  35.             
  36. #    {Commando} - the Commando tool and support
  37.  
  38.              Export Windows
  39.              Export Aliases
  40.              Set Commando Commando
  41.             Export Commando
  42.  
  43. ###    Start the main Installer loop
  44.  
  45. Loop        ###    Call the Install script via the Commando Interface
  46.  
  47.     Install…
  48.     
  49.     Confirm -t "Another Installation?" ∂
  50.          "Click “Yes” to perform additional installations" ∂
  51.          "or “No” to exit the MPW installation process."
  52.          
  53.     Break if {Status} != 0    
  54.     
  55. End
  56.  
  57. #
  58.  
  59. Alert    "Installation complete!  The Installer will now quit. You " ∂
  60.         "may remove the Installation Folder from your hard drive."
  61. Quit -n
  62. Exit 0
  63.  
  64.